Fix unrendered mx-imgBorder div#14382
Conversation
Fixes the `[!div class="mx-imgBorder"]` markup leaking into the rendered page in the "Enable or disable inheritance for a specific repository" section of Set Git repository permissions. Problem: The `[!div]` extension and its image were missing the blockquote (`>`) prefix, so DocFX didn't parse them as an extension and rendered `[!div class="mx-imgBorder"]` as literal text above the screenshot. Fix: Added the `>` prefix to both the `[!div]` line and the image line so they form a single blockquote, matching the correctly rendered usage in the "Set permissions for a specific user" section of the same file.
|
@kinu404 : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
1 similar comment
|
@kinu404 : Thanks for your contribution! The author(s) and reviewer(s) have been notified to review your proposed change. |
|
Can you review the proposed changes? IMPORTANT: When the changes are ready for publication, adding a #label:"aq-pr-triaged" |
There was a problem hiding this comment.
Pull request overview
This PR fixes a DocFX rendering issue in the Azure Repos documentation by ensuring the [!div class="mx-imgBorder"] screenshot wrapper is correctly parsed (instead of showing up as literal text) in the “Enable or disable inheritance for a specific repository” section.
Changes:
- Added the required blockquote (
>) prefix to the[!div class="mx-imgBorder"]line and its associated image line so DocFX treats them as an extension block. - Normalized the indentation of the final “Security REST API commands” related-content bullet so it remains part of the list.
|
@kinu404 - Thanks for the formatting fix! I'll go ahead and merge this PR now. |
Fixes the
[!div class="mx-imgBorder"]markup leaking into the rendered page in the "Enable or disable inheritance for a specific repository" section of Set Git repository permissions.Problem: The
[!div]extension and its image were missing the blockquote (>) prefix, so DocFX didn't parse them as an extension and rendered[!div class="mx-imgBorder"]as literal text next to the screenshot.Fix: Added the
>prefix to both the[!div]line and the image line so they form a single blockquote, matching the correctly rendered usage in the "Set permissions for a specific user" section of the same file.